| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 12 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | /** global: GLSR, jQuery */ | ||
| 22 | 		init_: function( pointer ) { // object | ||
| 23 | 			$( pointer.target ).pointer({ | ||
| 24 | content: pointer.options.content, | ||
| 25 | position: pointer.options.position, | ||
| 26 | close: this.close_.bind( pointer.id ), | ||
| 27 | }) | ||
| 28 | .pointer( 'open' ) | ||
| 29 | .pointer( 'sendToTop' ); | ||
| 30 | 			$( document ).on( 'wp-window-resized', function() { | ||
| 31 | $( pointer.target ).pointer( 'reposition' ); | ||
| 32 | }); | ||
| 33 | }, | ||
| 34 | }; | ||
| 36 |